home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / os2 / nortutil.zip / src / BiffFinn / Makefile < prev    next >
Makefile  |  1996-08-28  |  417b  |  23 lines

  1. #Makefile for biffa and fin
  2. #Makefile by Graeme Mullin <dmullin@cs.strath.ac.uk>, 21/12/89
  3.  
  4. #Put in your favourite lex or C compiler here
  5. LEX = lex
  6. CC = cc
  7.  
  8. CLIBS = -ll
  9. CFLAGS = -O -s
  10. RM = /bin/rm
  11.  
  12. all: biffa fin
  13.  
  14. biffa: biffa.l
  15.     $(LEX) biffa.l
  16.     $(CC) $(CFLAGS) -o biffa lex.yy.c $(CLIBS)
  17.     $(RM) -f lex.yy.c
  18.  
  19. fin:    fin.l
  20.     $(LEX) fin.l
  21.     $(CC) $(CFLAGS) -o fin lex.yy.c $(CLIBS)
  22.     $(RM) -f lex.yy.c
  23.